From 3f5362013df86bd8f21958634db58ec7edcd6e80 Mon Sep 17 00:00:00 2001 From: Aditya Bhargava Date: Mon, 22 Sep 2025 03:28:41 -0400 Subject: [PATCH] luci-app-acme: Fix incorrect "Days until renewal" placeholder If no value is provided for "Days until renewal", the `acme.sh` default is used. The placeholder should reflect this, and indicate what the current default is. Signed-off-by: Aditya Bhargava --- .../luci-app-acme/htdocs/luci-static/resources/view/acme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index 3d1e1a1948..3054761546 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -216,7 +216,7 @@ return view.extend({ o = s.taboption('advanced', form.Value, 'days', _('Days until renewal')); o.optional = true; - o.placeholder = 90; + o.placeholder = 'acme.sh default (60 days)'; o.datatype = 'uinteger'; o.modalonly = true; -- 2.30.2